home *** CD-ROM | disk | FTP | other *** search
- import java.awt.Graphics;
-
- class NameArea extends ImageMapArea {
- String name;
-
- public void handleArg(String arg) {
- this.name = arg;
- super.terminal = false;
- }
-
- public void highlight(Graphics g, boolean on) {
- super.highlight(g, on);
- ((ImageMapArea)this).showStatus(on ? this.name : null);
- }
-
- public NameArea() {
- }
- }
-